home *** CD-ROM | disk | FTP | other *** search
/ Oxygen Multimedia Graphics 22 / Oxygen Multimedia Graphics 22.iso / pc / System / OX22 / PDC_143_CI2-Select.ls < prev    next >
Encoding:
Text File  |  2008-03-12  |  342 b   |  21 lines

  1. global gtNum
  2.  
  3. on mouseDown me
  4.   if (the mouseV > 120) and (the mouseV < 240) then
  5.     gtNum = 1
  6.   else
  7.     if (the mouseV > 255) and (the mouseV < 370) then
  8.       gtNum = 2
  9.     else
  10.       if (the mouseV > 380) and (the mouseV < 500) then
  11.         gtNum = 3
  12.       end if
  13.     end if
  14.   end if
  15.   put gtNum
  16. end
  17.  
  18. on mouseUp me
  19.   go("FInalLoad")
  20. end
  21.